home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / stackey3.zip / FLASH.ASM < prev    next >
Assembly Source File  |  1990-03-25  |  576b  |  22 lines

  1.                               title FLASH.ASM
  2. ;Copyright (C) 1990 by B. Simon and R. M. Wilson, all rights reserved.
  3.  
  4. onlyseg segment
  5.         assume  cs:onlyseg
  6.  
  7. begin:                        ;DO NOT RUN FROM DOS!!
  8.         mov es,ds:[40h]       ;STACKEY stores the segment of the screen
  9.         call xorscreen        ;   memory at word ptr ds:[40h].
  10.         xor cx,cx
  11.       here: loop here
  12.       xorscreen:  mov cx,8192
  13.         mov si,1
  14.       lp: xor byte ptr es:[si],07FH
  15.         inc si
  16.         inc si
  17.         loop lp
  18.         ret
  19.  
  20. onlyseg ends
  21. end begin
  22.